StringEntry

class StringEntry(val key: String, val value: String) : FormDataEntry

A key to string value pair representing a segment of form upload data.

Since

8.0.0

Constructors

Link copied to clipboard
constructor(key: String, value: String)

Properties

Link copied to clipboard
val key: String

The form content segment key.

Link copied to clipboard
open override val value: String

The segment value. Can be empty if the key does not correspond to any value. For example, an empty form field.